home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
unixSyscall
/
getgid.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-06-19
|
1KB
|
63 lines
/*
* getgid.c --
*
* Procedure to map from Unix getgid system call to Sprite.
*
* Copyright (C) 1986 Regents of the University of California
* All rights reserved.
*/
#ifndef lint
static char rcsid[] = "$Header: getgid.c,v 1.1 88/06/19 14:31:22 ouster Exp $ SPRITE (Berkeley)";
#endif not lint
#include "sprite.h"
#include "compatInt.h"
/*
*----------------------------------------------------------------------
*
* getgid --
*
* Procedure to map from Unix getgid system call to Sprite
* Proc_GetGroupIDs.
*
* Results:
* The sprite group id is returned for now.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
getgid()
{
return(155);
}
/*
*----------------------------------------------------------------------
*
* getegid --
*
* Procedure to map from Unix getgid system call to Sprite
* Proc_GetGroupIDs.
*
* Results:
* The sprite group id is returned for now.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
getegid()
{
return(155);
}